home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Modules / BackSpaceModules / Source / FadingImage / FadingImageView.h < prev    next >
Text File  |  1991-11-18  |  324b  |  22 lines

  1. //
  2. //  FadingImageView.h
  3. //
  4. //  Lennart Lovstrand, Rank Xerox EuroPARC, August 1991.
  5. //
  6.  
  7. #import "BackView.h"
  8.  
  9. @interface FadingImageView:BackView
  10. {
  11.     NXPoint deltaCoord;
  12.     unsigned steptime;
  13.     float delta;
  14.     enum {FV_FadeIn, FV_FadeOut, FV_Move} state;
  15. }
  16.  
  17. - oneStep;
  18. - initFrame:(NXRect *) frameRect;
  19. - inspector:sender;
  20.  
  21. @end
  22.